home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day06 / about.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  950 b   |  29 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef AboutH
  3. #define AboutH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Buttons.hpp>
  11. //---------------------------------------------------------------------------
  12. class TAboutBox : public TForm
  13. {
  14. __published:    // IDE-managed Components 
  15.     TLabel *Label1;
  16.     TLabel *Label2;
  17.     TLabel *Label3;
  18.     TImage *Image1;
  19.     TBevel *Bevel1;
  20.     TBitBtn *BitBtn1;
  21. private:        // User declarations
  22. public:         // User declarations
  23.     virtual __fastcall TAboutBox(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern TAboutBox *AboutBox;
  27. //---------------------------------------------------------------------------
  28. #endif
  29.